home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 138
/
Volume 138 Aug 19 2011 - Damaged.iso
/
Games
/
shadez.swf
/
scripts
/
Local
/
External
/
CMG
/
ServerResponseEvent.as
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2011-08-19
|
350 b
|
18 lines
package Local.External.CMG
{
import flash.events.Event;
public class ServerResponseEvent extends Event
{
public var returnCode:uint;
public function ServerResponseEvent(param1:String, param2:uint)
{
super(param1,false,false);
returnCode = param2;
}
}
}